-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add dependencies for ros2 SSC #208
Conversation
noetic-foxy/Dockerfile
Outdated
sh -c 'echo "deb [trusted=yes] https://s3.amazonaws.com/autonomoustuff-repo/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/autonomoustuff-public.list' && \ | ||
apt-get update && \ | ||
apt-get install --no-install-recommends --yes libas-common && \ | ||
# ROS2 SSC dependencies from Astuff | ||
apt-get install ros-foxy-pacmod3-msgs --yes && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is failing because the source list from autonomous stuff need to be first?
Also that makes me think why it didn't work the first time because the message dependency is here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes that is correct, this package is from Astuff distribution
<!-- Thanks for the contribution, this is awesome. --> # PR Details Updating image to not install pacmod3_msgs since they are being installed in carma-base under usdot-fhwa-stol/carma-base#208 ## Description <!--- Describe your changes in detail --> Removes installation for pacmod3_msgs and apt-transport-s3 packages which ## Related GitHub Issue <!--- This project only accepts pull requests related to open GitHub issues or Jira Keys --> <!--- If suggesting a new feature or change, please discuss it in an issue first --> <!--- If fixing a bug, there should be an issue describing it with steps to reproduce --> <!--- Please DO NOT name partially fixed issues, instead open an issue specific to this fix --> <!--- Please link to the issue here: --> ## Related Jira Key <!-- e.g. CAR-123 --> ## Motivation and Context <!--- Why is this change required? What problem does it solve? --> ## How Has This Been Tested? <!--- Please describe in detail how you tested your changes. --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> ## Types of changes <!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [ ] Defect fix (non-breaking change that fixes an issue) - [x] New feature (non-breaking change that adds functionality) - [ ] Breaking change (fix or feature that cause existing functionality to change) ## Checklist: <!--- Go over all the following points, and put an `x` in all the boxes that apply. --> <!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> - [ ] I have added any new packages to the sonar-scanner.properties file - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [x] I have read the [**CONTRIBUTING**](https://github.com/usdot-fhwa-stol/carma-platform/blob/develop/Contributing.md) document. - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed.
PR Details
In order to support ros2 foxy SSC implementation the CARMA system needs to install pacmod3_msgs. This message is currently only installed in the ssc_interface_wrapper. Since rosbags are recorded in the carma-platform container, these messages are also required to be installed there so that the control related topics can be recorded to the rosbag files. In order to avoid duplication of installation across repositories, the packages are installed in carma-base.
Description
Related GitHub Issue
Related Jira Key
https://usdot-carma.atlassian.net/browse/ARC-231
Motivation and Context
How Has This Been Tested?
Types of changes
Checklist: